projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dc6be85
)
bitkeeper revision 1.1668.1.3 (42a4b83eZHwXGwvsDXM7zJdyI_ZhNQ)
author
djm@kirby.fc.hp.com
<djm@kirby.fc.hp.com>
Mon, 6 Jun 2005 20:55:26 +0000
(20:55 +0000)
committer
djm@kirby.fc.hp.com
<djm@kirby.fc.hp.com>
Mon, 6 Jun 2005 20:55:26 +0000
(20:55 +0000)
Oops, fix parameter ordering for console PCDP
xen/arch/ia64/pcdp.c
patch
|
blob
|
history
diff --git
a/xen/arch/ia64/pcdp.c
b/xen/arch/ia64/pcdp.c
index e2ab84a8c7f9288184c923a196fb5609972846d7..469047a69dfe9b5adeab21fafe4cae24aa57c2bf 100644
(file)
--- a/
xen/arch/ia64/pcdp.c
+++ b/
xen/arch/ia64/pcdp.c
@@
-26,9
+26,9
@@
setup_serial_console(struct pcdp_uart *uart)
#ifdef XEN
extern char opt_com1[1];
if (opt_com1[0]) return 0;
- sprintf(&opt_com1[0], "
0x%lx,%lu,%dn1
",
- uart->
addr.address, uart->baud
,
- uart->
bits ? uart->bits : 8
);
+ sprintf(&opt_com1[0], "
%lu,%dn1,0x%lx,9
",
+ uart->
baud, uart->bits ? uart->bits : 8
,
+ uart->
addr.address
);
return 0;
#else
#ifdef CONFIG_SERIAL_8250_CONSOLE